home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / prgtools / njsdk30.zip / HELLO.C < prev    next >
Text File  |  1994-03-20  |  417b  |  18 lines

  1. /* Hello.c - the classical 'hello world' program in Chinese
  2.  *
  3.  * type> 'cc hello' to compile under MSC 7.00 or Visual C++ 1.00
  4.  */
  5.  
  6. #include <stdio.h>
  7. #include "njsdk.h"
  8. #include "keys.h"
  9. main(int argc, char **argv)
  10. {
  11.     char str[80]={"\0"};
  12.     NJ_init(argv[0]);
  13.     NJ_puts("╩└╜τú¼─·║├┬≡ú┐",5,35,15,1);
  14.     NJ_puts("╟δ╩Σ╚δ─·╡─├√╫╓ú║",11,20,15,1);
  15.     NJ_gets(str,11,36,30,10,0);
  16.     NJ_end();
  17. }
  18.